home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / editors / mutt / me2s_pl7.zoo / mu_edit2 / util / imin.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-05  |  288 b   |  11 lines

  1. static char rcsid[] = "$Id: imin.c,v 1.1 1992/09/06 19:31:32 mike Exp $";
  2.  
  3. /* $Log: imin.c,v $
  4.  * Revision 1.1  1992/09/06  19:31:32  mike
  5.  * Initial revision
  6.  *
  7.  */
  8.  
  9.     /* imin(int,int) returns the the smaller of 2 ints */
  10. imin(a,b) register int a,b; { return (a < b) ? a : b; }
  11.